From: Keir Fraser Date: Mon, 13 Oct 2008 09:03:36 +0000 (+0100) Subject: xend: Fix dev backend path construction. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14088 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=27b182400b78c590e7be70d5c92233b99925d82a;p=xen.git xend: Fix dev backend path construction. Signed-off-by: Jim Fehlig --- diff --git a/tools/python/xen/xend/server/DevController.py b/tools/python/xen/xend/server/DevController.py index d4e2914da5..022ed1a5ab 100644 --- a/tools/python/xen/xend/server/DevController.py +++ b/tools/python/xen/xend/server/DevController.py @@ -257,7 +257,7 @@ class DevController: if force: frontpath = self.frontendPath(dev) - backpath = self.readVm(devid, "backend") + backpath = self.readVm(dev, "backend") if backpath: xstransact.Remove(backpath) xstransact.Remove(frontpath)